home *** CD-ROM | disk | FTP | other *** search
/ How Would You Survive? / How Would You Survive (1995)(Grolier)[Mac-PC].iso / mac / OPENING.DIR / 00182_Script_182 < prev    next >
Text File  |  1995-09-06  |  648b  |  42 lines

  1. Global gBtnE, gBtnA, gBtnV
  2.  
  3. on OpenRollover
  4.   if the mousecast = the castnum of sprite 46 then
  5.     HandCursor
  6.   else
  7.     if rollover(47) then
  8.       HandCursor
  9.     else
  10.       if rollover(48) then
  11.         HandCursor
  12.       else
  13.         ArrowCursor
  14.       end if
  15.     end if
  16.   end if
  17.   if hilight (gBtnE) then exit
  18.   if hilight (gBtnA) then exit
  19.   if hilight (gBtnV) then exit 
  20. end
  21.  
  22. on BtnE
  23.   go movie "EDEMO"
  24. end
  25.  
  26. on BtnA
  27.   go movie "ADEMO"
  28. end
  29.  
  30. on BtnV
  31.   go movie "VDEMO"
  32. end
  33.  
  34. on OpenKill
  35.   hideControl (gBtnE)
  36.   hideControl (gBtnA)
  37.   hideControl (gBtnV)
  38.   set gBtnE = 0  
  39.   set gBtnA = 0  
  40.   set gBtnV = 0
  41. end
  42.